home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / sandsurfer_xss.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  75 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4.  
  5. if(description)
  6. {
  7.  script_id(12087);
  8.  script_bugtraq_id(9801);
  9.  script_version ("$Revision: 1.2 $");
  10.  
  11.  
  12.  name["english"] = "SandSurfer Cross Site Scripting Vulnerabilities";
  13.  
  14.  script_name(english:name["english"]);
  15.  
  16.  desc["english"] = "
  17. The remote host is running SandSurfer, a web-based time keeping application.
  18.  
  19. A vulnerability has been disclosed in all versions of this software, up to
  20. version 1.7.0 (included) which may allow an attacker to use it to perform
  21. a cross site scripting attack against third party users.
  22.  
  23. Solution : Upgrade to SandSurfer 1.7.1
  24. Risk factor : Medium";
  25.  
  26.  
  27.  
  28.  
  29.  script_description(english:desc["english"]);
  30.  
  31.  summary["english"] = "Checks for SandSurfer";
  32.  
  33.  script_summary(english:summary["english"]);
  34.  
  35.  script_category(ACT_ATTACK);
  36.  
  37.  
  38.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security"); 
  39.  family["english"] = "CGI abuses";
  40.  family["francais"] = "Abus de CGI";
  41.  script_family(english:family["english"], francais:family["francais"]);
  42.  script_dependencie("find_service.nes", "http_version.nasl");
  43.  script_require_ports("Services/www", 80);
  44.  exit(0);
  45. }
  46.  
  47. # The script code starts here
  48.  
  49. include("http_func.inc");
  50. include("http_keepalive.inc");
  51.  
  52. port = get_http_port(default:80);
  53.  
  54. if(!get_port_state(port))exit(0);
  55. if(!can_host_php(port:port))exit(0);
  56.  
  57. foreach d ( cgi_dirs() )
  58. {
  59.  # SandSurfer installs under $prefix/cgi-bin/login.cgi
  60.  req = http_get(item:string(d, "/cgi-bin/login.cgi"), port:port);
  61.  res = http_keepalive_send_recv(port:port, data:req);
  62.  if( res == NULL ) exit(0);
  63.  if( egrep(pattern:"SandSurfer (0\.|1\.([0-5]\.|7\.1))", string:res)){
  64.      security_warning(port);
  65.     exit(0);
  66.  }
  67.  req = http_get(item:string(d, "/login.cgi"), port:port);
  68.  res = http_keepalive_send_recv(port:port, data:req);
  69.  if( res == NULL ) exit(0);
  70.  if( egrep(pattern:"SandSurfer (0\.|1\.([0-6]\.|7\.0))", string:res)){
  71.      security_warning(port);
  72.     exit(0);
  73.  }
  74. }
  75.